home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Clean 1.2.4 / PowerMacInterface / desk.icl < prev    next >
Text File  |  1996-03-01  |  499b  |  20 lines

  1. implementation module desk;
  2.  
  3. import mac_types;
  4.  
  5. SystemTask :: !Toolbox -> Toolbox;
  6. SystemTask t = code (t=U)(z=Z){
  7.     call    .SystemTask
  8. };
  9.  
  10. OpenDeskAcc :: !{#Char} !Toolbox -> Toolbox;
  11. OpenDeskAcc theAcc t = code (theAcc=SD0,t=U)(z=Z){
  12.     call    .OpenDeskAcc
  13. };
  14.  
  15. SystemClick :: !(!Int,!Int,!Int,!Int,!Int,!Int) !WindowPtr !Toolbox -> Toolbox;
  16. SystemClick (what,message,when,h,v,modifiers) theWindow t
  17. = code (modifiers=W,h=W,v=W,when=L,message=L,what=W,theWindow=O0D0D1,t=U)(z=I16Z){
  18.     call    .SystemClick
  19. };
  20.